home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / cscurcnt.sql < prev    next >
Text File  |  2000-05-12  |  837b  |  24 lines

  1. /* RCSVER $Id: cscurcnt.sql,v 1.1 1999-02-25 15:04:50-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        cscurcnt.sql
  6. * Date:        02/23/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the cscurcnt table.
  9. * Changes:
  10. ************************************************************************* */
  11. CREATE TABLE cscurcnt
  12. (
  13.     det_seq_num    NUMBER(38)
  14.         CONSTRAINT ref1_cscurcnt REFERENCES mstrrec(det_seq_num),
  15.     farebox_glid    NUMBER(38),
  16.         conv_date       DATE,           /* Date for this record */
  17.     currency_type    NUMBER(38),
  18.     reset_value    NUMBER(38),
  19.     reset_count    NUMBER(38),
  20.     total_value     NUMBER(38),
  21.     total_count    NUMBER(38),
  22.     CONSTRAINT pk_cscurcnt PRIMARY KEY (det_seq_num, currency_type)
  23. );
  24.